void LCD_Test_Console( void ) { DB_LED(1); LCD_PortInit(); LCD_Init(); LCDC_Init(); LCDC_Print( "C:\\> Hallo?\nabcdefghijklmnopqrstuvwxyz\nA\tB\tCC;\nAA\tBBBBBB\t[]<>{}|~;\näöü ÄÖÜ ß \n^° !\"$%&/()=? +* #' -_ .: ,;" ); short i = 7; while (1) { char s[16]; sprintf( s, "N %d:\n", i++ ); _delay_ms(200.); _delay_ms(200.); LCDC_Print( s ); PORTB = PIND; } }